home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / GrowBoxDock / Sources / TextFile.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-30  |  3.6 KB  |  87 lines

  1. /*
  2.     File:        TextFile.h
  3.  
  4.     Contains:    Text file support for simple text application
  5.  
  6.     Version:    Mac OS X
  7.  
  8.     Disclaimer:    IMPORTANT:  This Apple software is supplied to you by Apple Computer, Inc.
  9.                 ("Apple") in consideration of your agreement to the following terms, and your
  10.                 use, installation, modification or redistribution of this Apple software
  11.                 constitutes acceptance of these terms.  If you do not agree with these terms,
  12.                 please do not use, install, modify or redistribute this Apple software.
  13.  
  14.                 In consideration of your agreement to abide by the following terms, and subject
  15.                 to these terms, Apple grants you a personal, non-exclusive license, under Apple’s
  16.                 copyrights in this original Apple software (the "Apple Software"), to use,
  17.                 reproduce, modify and redistribute the Apple Software, with or without
  18.                 modifications, in source and/or binary forms; provided that if you redistribute
  19.                 the Apple Software in its entirety and without modifications, you must retain
  20.                 this notice and the following text and disclaimers in all such redistributions of
  21.                 the Apple Software.  Neither the name, trademarks, service marks or logos of
  22.                 Apple Computer, Inc. may be used to endorse or promote products derived from the
  23.                 Apple Software without specific prior written permission from Apple.  Except as
  24.                 expressly stated in this notice, no other rights or licenses, express or implied,
  25.                 are granted by Apple herein, including but not limited to any patent rights that
  26.                 may be infringed by your derivative works or by other works in which the Apple
  27.                 Software may be incorporated.
  28.  
  29.                 The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
  30.                 WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
  31.                 WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  32.                 PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
  33.                 COMBINATION WITH YOUR PRODUCTS.
  34.  
  35.                 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
  36.                 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  37.                 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  38.                 ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
  39.                 OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT
  40.                 (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN
  41.                 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42.  
  43.     Copyright © 1993-2001 Apple Computer, Inc., All Rights Reserved
  44. */
  45.  
  46. #include "SimpleText.h"
  47.  
  48. #define kTextStrings             kTextBaseID
  49. #define iSpeakSelection                1
  50. #define iSpeakAll                    2
  51. #define iStationeryHelp                3
  52. #define iStationerySelectedHelp        4
  53. #define iDocumentHelp                 5
  54. #define iDocumentSelectedHelp        6
  55. #define iPictureMarker1                7
  56. #define iPictureMarker2                8
  57.  
  58. #define kTextSaveAsDialogID     kTextBaseID+1
  59. #define iTextDocumentItem        14
  60. #define iStationeryDocumentItem    15
  61. #define iTextUserItem            16
  62. #define iStationeryUserItem        17
  63.  
  64. #define kMaxLength                31*1024
  65.  
  66.  
  67. #ifndef REZ
  68.     struct TextDataRecord
  69.         {
  70.         WindowDataRecord        w;
  71.         
  72.         Boolean                    insideClickLoop;    // inside the click loop
  73.         TEClickLoopUPP            docClick;            // old click loop value
  74.         TEHandle                hTE;                // text editing area
  75.         Handle                    soundHandle;        // sound associated with this machine
  76.         
  77.         // undo support items
  78.         short                    prevCommandID;
  79.         Handle                    prevText;
  80.         Handle                    prevStyle;
  81.         short                    prevLength;
  82.         short                    prevSelStart;
  83.         short                    beforeSelStart, beforeSelEnd;
  84.         };
  85.     typedef struct TextDataRecord TextDataRecord, *TextDataPtr;    
  86. #endif
  87.